home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Champak 62
/
Volume 62 - JOGO DISK .iso
/
Games
/
room-maker.swf
/
scripts
/
frame_6
/
PlaceObject2_781_38
/
CLIPACTIONRECORD onClipEvent(enterFrame).as
next >
Wrap
Text File
|
2008-03-17
|
597b
|
33 lines
onClipEvent(enterFrame){
distX = targetX - this._x;
distY = targetY - this._y;
if(Math.abs(distX) > 0.01)
{
this._x += distX * rateX;
}
else
{
this._x = targetX;
}
if(Math.abs(distY) > 0.01)
{
this._y += distY * rateY;
}
else
{
this._y = targetY;
}
this.help_btn.onRelease = function()
{
targetX = 120;
targetY = 130;
_root.nonullmenu = false;
};
this.close_btn.onRelease = function()
{
targetX = iX;
targetY = iY;
_root.nonullmenu = true;
};
}